home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1995 #5 & #6 / Amiga Plus CD - 1995 - No. 5 and 6.iso / pd / serien / purity / nr.36 / includespcq / date.i next >
Text File  |  1994-09-17  |  434b  |  28 lines

  1. { Date.i }
  2.  
  3. {$I   "Include:Exec/Types.i"}
  4.  
  5. Type
  6.       ClockData = Record
  7.         sec,
  8.         min,
  9.         hour,
  10.         mday,
  11.         month,
  12.         year,
  13.         wday : Short;
  14.       END;
  15.       ClockDataPtr = ^ClockData;
  16.  
  17.  
  18. PROCEDURE Amiga2Date(AmigaTime : Integer; Date : ClockDataPtr);
  19.     External;
  20.  
  21. FUNCTION CheckDate(date : ClockDataPtr) : Integer;
  22.     External;
  23.  
  24. FUNCTION Date2Amiga(Date : ClockData) : Integer;
  25.     External;
  26.  
  27.  
  28.